home *** CD-ROM | disk | FTP | other *** search
Wrap
on mouseUp global gUserAnswer myBrowser = browserName() web = "http://www.lastcallgame.com" promptText = "Would you like to open your web browser and visit us online?" & RETURN & "If your browser doesn't launch automatically, visit us at" && web titleText = "Go Online?" multiButtonDialog(["Yes", "No"], [#MAC: [100, 275], #Win: [75, 225]], "No", titleText, promptText, [#MAC: 425, #Win: 300], [#MAC: 75, #Win: 50]) if gUserAnswer = "Yes" then if myBrowser <> EMPTY then gotoNetPage(web) else MUIalert("You don't seem to have a browser installed. If you do, start it manually and visit us at" && web) end if end if end